home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 5698 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  564 b 

  1. From: Tendrils@msn.com (kelvin  )
  2. Subject: RE: Heap Memory Management
  3. Date: 6 Feb 96 07:19:20 -0800
  4. References: <1996Feb4.140550.4699@wisipc.weizmann.ac.il>
  5. Message-ID: <00001a81+00009b5a@msn.com>
  6. Path: news.msn.com!msn.com
  7. Newsgroups: comp.lang.c++
  8. Organization: The Microsoft Network (msn.com)
  9.  
  10. I think there is a confusion of heap space and stack space.
  11. Heap space is dynamically allocated memory like that from new while
  12. stack space are assigned by the compiler ... the return parameter and 
  13. function parameters are in the stack space ...
  14.  
  15. hope  this help ...
  16.